Get Response Queue

The customer portal will make a call to the Third-Party Gateway to get the connection string of the response queue. Every REST response from the EAC is sent to this service bus queue. The customer portal has read-only access to the response queue. The customer portal listens for responses from this queue.

Get Response Queue response details

Request URL

GET di/third-party-gateway/api/v1/tenants/{tenantId}/response-queue

URL parameters

tenantId – Tenant ID

Response code

200 The request successfullyprocessed.

Response schema

{

  "type": "object",

  "properties": {

   "connectionString": {

      "type": "string",

    "description": "Read only connection string to service bus queue.",

  }

 }

}

Response sample

{

"connectionString": "Endpoint=sb://sb-use-di-

dev.servicebus.windows.net/;SharedAccessKeyName=ListenPolicy;

SharedAccessKey=FNg9d1RlCsOo6Beq+pVTmVabyb6uyUnO/BWyWGHCEd0=;EntityPath=tpgw.response.mocktenantslug.mockclientslug "

}